home *** CD-ROM | disk | FTP | other *** search
/ Informática Multimedia 1995 April / Informatica Multimedia CD - Epimundo.iso / DOS / ARCHIVE / UAU.ZIP / COMPR23.TXT < prev    next >
Encoding:
Text File  |  1991-05-01  |  23.5 KB  |  557 lines

  1.     -----------------------------------------------------------------
  2.     compr23.txt - last modified Sun Apr 28 23:40:58 1991 CST
  3.     -----------------------------------------------------------------
  4.     Universal archive utilities package v2.3 - Mark B. Foster
  5.  
  6.     See the 'utility history' section of this file for changes from
  7.     v2.2.
  8.  
  9.     -----------------------------------------------------------------
  10.     The utilities were assembled using A86 v3.22.  Special thanks to
  11.     Pat Myrto, Mike Arst, Patrick Lee, Seth Chaiklin, and Eric Isaacson.
  12.  
  13.     Feel free to contact me with comments or problems, and especially
  14.     with news of updated or new compression programs.  I receive email
  15.     regularly at the following BBS:
  16.  
  17.         Programmers Resource: (206) 823-1917
  18.  
  19.     I occasionally log on to the following services as well:
  20.  
  21.         ExecRegion BBS: (312) 267-4749
  22.         GEnie: M.FOSTER3
  23.  
  24.     I finally junked my Compu$erve account and, as a result, am now
  25.     without an Internet mail address.  If you know of a UNIX site in the
  26.     Chicago area that has space for another user, please contact me.
  27.  
  28.     If you have renamed any of my utilities (or the supported compression
  29.     programs), let me know and I will assemble custom versions for you as
  30.     time permits.
  31.  
  32.     Although these utilities have been extensively tested and all known
  33.     bugs eradicated, I explicitly disclaim any warranty whatsoever for
  34.     them.  Any and all risk of using them is yours alone.
  35.  
  36.     -----------------------------------------------------------------
  37.     Introduction.
  38.     -----------------------------------------------------------------
  39.     This archive contains four extremely fast utilities that simplify
  40.     the routine chores of extracting from, freshening, deleting from,
  41.     and viewing file lists in compressed files:
  42.  
  43.         xt - extractor for zip, lzh, lzs, pak, arc, arj, dwc, md,
  44.              zoo, uue, sh, tar, Z, sit, pit archives
  45.  
  46.         fr - freshener for zip, lzh, lzs, pak, arc, arj, zoo, dwc
  47.              archives
  48.  
  49.         dl - deleter for zip, lzh, lzs, pak, arc, arj, zoo, dwc
  50.              archives
  51.  
  52.         vw - file lister for zip, lzh, lzs, pak, arc, arj, dwc, md,
  53.              zoo, tar, sit, pit archives
  54.  
  55.     They first identify the kind of archive(s) being operated on (by
  56.     checking the internal archive format), and then invoke the
  57.     appropriate compression programs to perform the desired task.
  58.  
  59.     -----------------------------------------------------------------
  60.     Program syntax.
  61.     -----------------------------------------------------------------
  62.     xt usage: xt [-o -u] archive [filename{s}]
  63.  
  64.         -o  overwrite existing output files
  65.         -u  unlink (delete) archive(s) after file extraction
  66.  
  67.     -----------------------------------------------------------------
  68.     fr usage: fr [-c -s] archive [filename{s}]
  69.  
  70.         -c  set pak v2.x to use Crush for true-pak archives
  71.  
  72.         -s  set pkzip v1.10 to use Shrink
  73.             set pak to use Squash for arc-format archives
  74.  
  75.     -----------------------------------------------------------------
  76.     dl usage: dl archive filename[s]
  77.  
  78.     -----------------------------------------------------------------
  79.     vw usage: vw archive [filename{s}]
  80.  
  81.     -----------------------------------------------------------------
  82.     General notes.
  83.     -----------------------------------------------------------------
  84.     Archive extensions need not be specified.
  85.  
  86.     Wildcards and pathnames are supported.  For example, 'xt *' is
  87.     equivalent to 'xt *.*', 'xt foo*' to 'xt foo*.*', and so on.
  88.  
  89.     The '/' switch character may be used instead of '-'.
  90.  
  91.     The compression programs must reside on the path or in the same
  92.     directory as the utilities.
  93.  
  94.     The utilities return a nonzero errorlevel upon encountering an error
  95.     during execution.
  96.  
  97.     A cryptic usage message may be viewed by entering the utility name
  98.     with no parameters at the DOS prompt.
  99.  
  100.     The version ID and usage message may be viewed with the command
  101.     'type n' (where 'n' is the utility name) at the DOS prompt.
  102.  
  103.     -----------------------------------------------------------------
  104.     Specific notes.
  105.     -----------------------------------------------------------------
  106.     Each of the tables in this section lists the programs supported by
  107.     the utilities, and the switches passed to them.  A dot ('.')
  108.     indicates no arguments.  Blanks denote that an option is not
  109.     available.
  110.  
  111.     -----------------------------------------------------------------
  112.     Zip-format notes.
  113.  
  114.     Pkzip, written by Phil Katz, is the de facto BBS archiver of choice
  115.     in the U.S.  It uses two basic compression algorithms: a Huffman/
  116.     Sliding Window with 2-3 Shanno-Fano trees and a 4-8k sliding
  117.     dictionary (Implode), and variable length 9-13 bit Lempel-Ziv 77
  118.     compression with an 8k buffer and partial clearing (Shrink, apparantly
  119.     a variant of the older Squash).
  120.  
  121.     Xt and vw look first for pkunzip.exe, then for pak.exe if pkunzip
  122.     is not found; fr and dl look first for pkzip.exe, then for pak.exe.
  123.  
  124.     For pkzip.exe v1.10, fr defaults to Implode; the 's' switch sets
  125.     pkzip to use Shrink instead.
  126.  
  127.     +---------+------+----+-------+------+-------+----+----+
  128.     |   pgm   | vers | xt | xt -o |  fr  | fr -s | dl | vw |
  129.     +=========+======+====+=======+======+=======+====+====+
  130.     |  pkzip  | 1.10 |    |       |  -f  | -fes  | -d |    |
  131.     +---------+------+----+-------+------+-------+----+----+
  132.     | pkunzip | 1.10 | .  |  -o   |      |       |    | -v |
  133.     +---------+------+----+-------+------+-------+----+----+
  134.     |   pak   | 2.51 | e  | e /wa |  f   |       | d  | v  |
  135.     +---------+------+----+-------+------+-------+----+----+
  136.  
  137.     -----------------------------------------------------------------
  138.     Pak notes.
  139.  
  140.     Pak, written by Gus Smedstad, is without doubt the most    versatile
  141.     archiving program available.  Not only does it employ highly
  142.     efficient compression routines of its own, but it handles zip
  143.     archives and many older compression formats (see below) as well.
  144.  
  145.     Pak's generally most efficient compression algorithm is Distill, a
  146.     Huffman/Sliding Window scheme with an 8k buffer, similar in some
  147.     respects to pkzip's Implode.
  148.  
  149.     Pak's unique contribution in Lempel-Ziv-Welch (LZW) algorithms is
  150.     Crush, which uses variable length 2-13 bit LZW compression with
  151.     run-length encoding and an 8k buffer.  Crush is usually more efficient
  152.     than either Squash or Crunch.
  153.  
  154.     For most text and executable files, the files created by pak are
  155.     slightly larger than those created by pkzip.  However, for many
  156.     other file types, e.g., Windows bitmaps and MSC function libraries,
  157.     pak archives are quite a bit smaller.
  158.  
  159.     C and Pascal object files utilizing all the compression algorithms
  160.     employed by pak are available in a programmers toolkit.
  161.  
  162.     With true-pak archives, fr sets pak.exe to use Distill by default.
  163.     The command 'fr -c' sets pak to use Crush instead.
  164.  
  165.     Pak requires about 195k of memory.  When 195k is not available, the
  166.     utilities abort with a status message.
  167.  
  168.     +-------+------+----+-------+----+-------+----+----+
  169.     |  pgm  | vers | xt | xt -o | fr | fr -c | dl | vw |
  170.     +=======+======+====+=======+====+=======+====+====+
  171.     |  pak  | 2.51 | e  | e /wa | f  | f /cr | d  | v  |
  172.     +-------+------+----+-------+----+-------+----+----+
  173.  
  174.     -----------------------------------------------------------------
  175.     Arc-format notes.
  176.  
  177.     Largely superseded by the compression methods employed by pak,
  178.     pkzip, and lha (lharc), pre-Crush 'arc' formats are still sometimes
  179.     encountered.  Pkarc and pkxarc, older programs written but no
  180.     longer supported by Phil Katz, handle them extremely fast.
  181.  
  182.     These older formats include:
  183.  
  184.         Pack    - replacement of repeated byte values by codes,
  185.               a method known as run-length encoding (RLE)
  186.  
  187.         Squeeze - Huffman encoding
  188.  
  189.         crunch  - fixed length 12 bit Lempel-Ziv-Welch (LZW)
  190.               compression with or without RLE, with a 4k buffer
  191.  
  192.         Crunch  - variable length 9-12 bit LZW compression with
  193.               RLE, with a 4k buffer
  194.  
  195.         Squash  - variable-length 9-13 bit LZW compression without
  196.               RLE, with an 8k buffer.
  197.  
  198.     Xt and vw look first for pkxarc.exe, then for pak.exe if pkxarc    is
  199.     not found; fr and dl look first for pkarc.exe, then for pak.exe.
  200.  
  201.     If pak is used for arc-format archives, fr sets pak to use Crunch
  202.     by default.  The command 'fr -s' sets pak to use Squash instead.
  203.  
  204.     Pkpak.exe and pkunpak.exe, essentially the same programs as pkarc
  205.     and pkxarc, can be substituted for the latter programs simply by
  206.     renaming them pkarc.exe and pkxarc.exe respectively.
  207.  
  208.     +---------+------+----+-------+------+-------+----+----+
  209.     |   pgm   | vers | xt | xt -o |  fr  | fr -s | dl | vw |
  210.     +=========+======+====+=======+======+=======+====+====+
  211.     |  pkarc  | 3.6  |    |       |  f   |       | d  |    |
  212.     +---------+------+----+-------+------+-------+----+----+
  213.     | pkxarc  | 3.6  | -e |  -r   |      |       |    |-vv |
  214.     +---------+------+----+-------+------+-------+----+----+
  215.     |   pak   | 2.51 | -e |-e /wa | f /c | f /s  | d  | v  |
  216.     +---------+------+----+-------+------+-------+----+----+
  217.  
  218.     -----------------------------------------------------------------
  219.     Lha (lharc) and larc notes.
  220.  
  221.     Though relatively slow, lha (lharc) has enjoyed considerable
  222.     popularity for generally producing the smallest archives of any
  223.     compression program - until the advent of arj, that is (see below).
  224.     Lha uses a new, static Huffman digital TRIE Lempel-Ziv 77 (LZ 77)
  225.     encoding method with an 8k window.  Its predecessor lharc uses an
  226.     LZ 77 adaptive Huffman compression algorithm with a 4k buffer.  Lha
  227.     and lharc were written by Haruyasu Yoshizaki.  The C source code for
  228.     his algorithms is available.
  229.  
  230.     Larc, one of lharc's less efficient predecessors, employs LZ 77
  231.     compression with adaptive arithmetic encoding.  Larc was written by
  232.     Haruhito Okumura.
  233.  
  234.     For lzs archives xt, dl, and vw look first for larc.exe, then for
  235.     lha.exe if larc is not found.  Because larc and lha use incompatible
  236.     compression methods, fr looks only for larc.
  237.  
  238.     +-------+------+------+-------+----+----+----+
  239.     |  pgm  | vers |  xt  | xt -o | fr | dl | vw |
  240.     +=======+======+======+=======+====+====+====+
  241.     |  lha  | 2.12 | e /c | e /cm | f  | d  | l  |
  242.     +-------+------+------+-------+----+----+----+
  243.     | larc  | 3.3  | e /c |e /c/o | f  | d  | l  |
  244.     +-------+------+------+-------+----+----+----+
  245.  
  246.     -----------------------------------------------------------------
  247.     Arj notes.
  248.  
  249.     Arj is a relatively recent entry from Robert K. Jung that makes
  250.     the smallest archives, generally speaking, of any major DOS
  251.     compression program.  The latest versions are also fairly fast.
  252.  
  253.     Three of its compression methods use a Lempel-Ziv 77 (LZ 77) Sliding
  254.     Window algorithm with static Huffman encoding.  A fourth method
  255.     uses a LZ 77 Sliding Window with pointer/length unary encoding.
  256.     ANSI C source for some of the algorithms is included with the
  257.     distribution package.  ANSI C source for arj.exe itself is available
  258.     from the author.
  259.  
  260.     +-------+------+------+---------+----+----+----+
  261.     |  pgm  | vers |  xt  |  xt -o  | fr | dl | vw |
  262.     +=======+======+======+=========+====+====+====+
  263.     |  arj  | 2.00 | e -c | e -c -y | f  | d  | l  |
  264.     +-------+------+------+---------+----+----+----+
  265.  
  266.     -----------------------------------------------------------------
  267.     Dwc and mdcd notes.
  268.  
  269.     DWC, by Dean Cooper, is an older but very fast archiving program
  270.     that uses variable length 9-12 bit Lempel-Ziv-Welch (LZW) compression
  271.     with run-length encoding (RLE) and a 4k buffer (a variant of Crunch).
  272.  
  273.     MDCD, by Michael Davenport, is also older and employs variable
  274.     length 9-13 bit LZW compression with RLE (a variant of Squash).
  275.     The Pascal and ASM source code is available.
  276.  
  277.     +-------+------+----+-------+----+----+----+
  278.     |  pgm  | vers | xt | xt -o | fr | dl | vw |
  279.     +=======+======+====+=======+====+====+====+
  280.     |  dwc  |a5.01 | e  |  ew   | fz | d  | v  |
  281.     +-------+------+----+-------+----+----+----+
  282.     | mdcd  | 1.0  | d  |   r   |    |    | l  |
  283.     +-------+------+----+-------+----+----+----+
  284.  
  285.     -----------------------------------------------------------------
  286.     Zoo and looz notes.
  287.  
  288.     Although the archives created by zoo are not particularly small
  289.     by today's standards, zoo is the most versatile utility for
  290.     transferring files between DOS and UNIX and, indeed, is second
  291.     only to pak in overall utility if archive size is not primary.
  292.     It uses a variable length 9-12 bit Lempel-Ziv-Welch algorithm with
  293.     run-length-encoding and a 4k buffer (a type of Crunch).  Zoo and zoo
  294.     archive extractor and lister looz were written by Rahul Dhesi.  The
  295.     C source code for zoo is available.
  296.  
  297.     Xt and vw look first for looz.exe, then for zoo.exe if looz is not
  298.     found.
  299.  
  300.     Fr first directs zoo to freshen an archive, then to pack it.  Dl
  301.     first directs zoo to delete from an archive, then to pack it.
  302.  
  303.     Fr and dl require one or more filename arguments.
  304.  
  305.     The utilities also operate upon bak archives created by zoo.
  306.  
  307.     +-------+------+----+-------+------+----+----+
  308.     |  pgm  | vers | xt | xt -o |  fr  | dl | vw |
  309.     +=======+======+====+=======+======+====+====+
  310.     |  zoo  | 2.01 | x  |  xSO  | auP: | DP | l  |
  311.     +-------+------+----+-------+------+----+----+
  312.     | looz  | 2.1  | x  |       |      |    | l  |
  313.     +-------+------+----+-------+------+----+----+
  314.  
  315.     -----------------------------------------------------------------
  316.     Uudecode and shar notes.
  317.  
  318.     These utilities are DOS ports of their UNIX namesakes.  Uudecode
  319.     and its companion utility uuencode are used to transfer binary
  320.     files via electronic mail.  Shar is sometimes used on UNIX systems
  321.     for concatenating source code and other text files for electronic
  322.     mail transfer as well.
  323.  
  324.     Uuencode maps ASCII characters onto a standard character set for
  325.     electronic transmission.  The basic scheme is to break groups of 3
  326.     eight bit characters (24 bits) into 4 six bit characters and then
  327.     add a space to each six bit character.
  328.  
  329.     Shar does not compress but rather concatenates files.
  330.  
  331.     Xt should work fine with standard sh archives, as long as any
  332.     prepended text is less than 256 characters in length.  This limit
  333.     might be removed upon a showing of interest.
  334.  
  335.     When extracting from a sh archive, shar automatically overwrites
  336.     files of the same name if they exist in the target directory.  Thus,
  337.     the command 'xt foo.sh bar.doc' will overwrite bar.doc if it exists
  338.     in the current directory.
  339.  
  340.     +----------+------------------------+----+
  341.     |   pgm    |        version         | xt |
  342.     +==========+========================+====+
  343.     | uudecode | Richard Marks - v4.13  | .  |
  344.     +----------+------------------------+----+
  345.     |   shar   | unknown - 09/14/87     | -u |
  346.     +----------+------------------------+----+
  347.  
  348.     -----------------------------------------------------------------
  349.     Tar and compress notes.
  350.  
  351.     These utilities are DOS ports of their UNIX namesakes.  Often used
  352.     in tandem to maximally compress source code on UNIX, they are also
  353.     sometimes used for transferring files between DOS and UNIX.  The C
  354.     source code for compress and for both tar versions is available.
  355.  
  356.     Tar does not compress but rather concatenates files.
  357.  
  358.     Compress is unique among Lempel-Ziv-Welch (LZW) archiving programs
  359.     in that it offers variable length 9-16 bit compression with RLE,
  360.     rather than the more common 9-12 bit (Crunch) or 9-13 bit (Squash)
  361.     LZW routines.  It is extremely efficient with ASCII text files.
  362.  
  363.     Compress requires about 450k of memory.  If less than 450k is
  364.     available, xt aborts with a status message.
  365.  
  366.     Compress cannot uncompress Z archives nondestructively.  Thus,
  367.     'xt foo.z' automatically overwrites 'foo' if it exists in the
  368.     current directory, as well as unlinking 'foo.z'.
  369.  
  370.     +----------+------------------------+------+-----+-----+
  371.     |   pgm    |        version         |  xt  |xt -o| vw  |
  372.     +==========+========================+======+=====+=====+
  373.     |   tar    |       Gnu v1.09        | xfvk | xfv | tfv |
  374.     +----------+------------------------+------+-----+-----+
  375.     |   tar    | Eric Roskos - 10/24/88 | xfvk | xfv | tfv |
  376.     +----------+------------------------+------+-----+-----+
  377.     | compress | Pat Myrto - 06/19/88   | -dv  |     |     |
  378.     +----------+------------------------+------+-----+-----+
  379.  
  380.     -----------------------------------------------------------------
  381.     Unstufit and unpackit notes.
  382.  
  383.     These utilities are useful for transferring sit (stuffit) and pit
  384.     (packit) archives from the Macintosh O/S to DOS.
  385.  
  386.     Though not very efficient, Stuffit is the most popular Macintosh
  387.     compression program, presumably for lack of real competition.  It
  388.     uses three different compression methods: run-length encoding, a
  389.     fixed length 14 bit Lempel-Ziv-Welch algorithm with an 18k buffer,
  390.     and Huffman encoding.
  391.  
  392.     For sit archives, xt and vw search first for unstufit.exe, then for
  393.     unsit.exe if unstufit is not found.
  394.  
  395.     +----------+------------------------+-----+----+
  396.     |   pgm    |        version         | xt  | vw |
  397.     +==========+========================+=====+====+
  398.     |  unsit   | Brian Uechi - v2.3     |  e  | v  |
  399.     +----------+------------------------+-----+----+
  400.     | unstufit | Scott McGinnis - v1.0  | /de | v  |
  401.     +----------+------------------------+-----+----+
  402.     | unpackit | Scott McGinnis - v1.0  | /de | v  |
  403.     +----------+------------------------+-----+----+
  404.  
  405.     -----------------------------------------------------------------
  406.     Utility history.
  407.     -----------------------------------------------------------------
  408.     compr23  05-01-91  Updated utilities for lha v2.12.
  409.                Updated utilities for arj v2.00.
  410.                Corrected vw usage message.
  411.                Minor expansion/correction of documentation.
  412.  
  413.     -----------------------------------------------------------------
  414.     compr22  01-23-91  Added support for arj v0.20.
  415.                Added support for Gnu tar v1.09.
  416.                Updated utilities for uuencode/uudecode v4.13.
  417.                Deleted mn.com and ma.com (mr) from distribution;
  418.                    just wasn't happy with them.
  419.                Corrected parsing of zip-format archives for
  420.                    processing by pak.
  421.                Expanded documentation to be more informative
  422.                    and opinionated.
  423.  
  424.     -----------------------------------------------------------------
  425.     compr21  12-01-90  Updated utilities for pak v2.51.
  426.                Abbreviated the mr help key list to one line.
  427.  
  428.     -----------------------------------------------------------------
  429.     compr20  05-30-90  Initial release of dl.com.
  430.                Updated utilities for pkzip/unzip v1.10.
  431.                Minor optimizations of fr.com.
  432.  
  433.     -----------------------------------------------------------------
  434.     compr19  01-20-90  Reversed arc-format pak and pkarc/xarc
  435.                    precedence.
  436.                Reversed zoo and looz precedence.
  437.                Reversed unsit and unstufit precedence.
  438.  
  439.     -----------------------------------------------------------------
  440.     compr18  01-01-90  Added support for unsit v2.3.
  441.                Removed support for pkzip/unzip v0.92.
  442.                Improved xt and vw tar archive parsing
  443.                    routine to reduce number of false hits.
  444.  
  445.     -----------------------------------------------------------------
  446.     compr17  12-14-89  Added support for uue (uuencode), sh (shar),
  447.                    tar, Z (compress), sit (stuffit), and pit
  448.                    (packit) archives.
  449.                Added standard key choices at 'mr' prompt.
  450.                Added pak bypass based on available memory.
  451.                Corrected parameter error in xt.
  452.                Corrected name of larc.exe in fr and an error
  453.                    in 'lharc and larc notes'.
  454.                Renamed mr_n.com 'mn.com', and mr_a.com
  455.                    'ma.com'.
  456.  
  457.     -----------------------------------------------------------------
  458.     compr16  08-26-89  Initial release of mr.com.
  459.                Added support for larc v3.3.
  460.                Concatenated usage message to version ID.
  461.                Corrected parsing of lzh archives.
  462.                Made fr pkzip defaults user-configurable.
  463.                Changed fr arc-format pak default to Crunch.
  464.                Merged fr switch letters and operation.
  465.                Removed fr switch letter configurability.
  466.                Reversed fr arc-format pak and pkarc/xarc
  467.                    precedence.
  468.                Adjusted fr zoo and looz precedence.
  469.                Added history section to dox.
  470.  
  471.     -----------------------------------------------------------------
  472.     compr15  08-12-89  Added support for pkzip/unzip v1.0x.
  473.                Added support for all pre-Crunch arc formats.
  474.                Changed fr pkzip default to Implode for v1.01.
  475.                Made fr pak v2.x default user-configurable.
  476.                Added fr 'S' switch.
  477.                Made fr switch letters user-configurable.
  478.                Adjusted fr arc-format pak and pkarc/xarc
  479.                    precedence.
  480.                Optimized utilities for A86 v3.21 assembler.
  481.  
  482.     -----------------------------------------------------------------
  483.     compr14  08-02-89  Added support for pak v2.x.
  484.                Removed support for pkpak/unpak and tau.
  485.                Added version ID.
  486.                Changed fr true-pak pak default to Distill for
  487.                    v2.x.
  488.                Added fr 'C' switch.
  489.                Adjusted fr zoo and looz precedence.
  490.  
  491.     -----------------------------------------------------------------
  492.     compr13  07-27-89  Modified error handling and display.
  493.                Corrected parsing of Packed arc-format archives.
  494.  
  495.     -----------------------------------------------------------------
  496.     compr12  07-20-89  Added support for pkpak/unpak v3.61.
  497.                Added fr 'c' and 's' switches.
  498.                Changed fr pkzip v0.92 default to Reduce4.
  499.  
  500.     -----------------------------------------------------------------
  501.     compr11  07-11-89  Initial release of fr.com and vw.com.
  502.                Fixed parsing of Squashed true-pak archives.
  503.                Added archiver version and switch table to dox.
  504.  
  505.     -----------------------------------------------------------------
  506.        xt10  07-05-89  Initial release of xt.com.
  507.  
  508.     -----------------------------------------------------------------
  509.  
  510.          ----------------end-of-author's-documentation---------------
  511.  
  512.                          Software Library Information:
  513.  
  514.                     This disk copy provided as a service of
  515.  
  516.                            Public (software) Library
  517.  
  518.          We are not the authors of this program, nor are we associated
  519.          with the author in any way other than as a distributor of the
  520.          program in accordance with the author's terms of distribution.
  521.  
  522.          Please direct shareware payments and specific questions about
  523.          this program to the author of the program, whose name appears
  524.          elsewhere in  this documentation. If you have trouble getting
  525.          in touch with the author,  we will do whatever we can to help
  526.          you with your questions. All programs have been tested and do
  527.          run.  To report problems,  please use the form that is in the
  528.          file PROBLEM.DOC on many of our disks or in other written for-
  529.          mat with screen printouts, if possible.  PsL cannot debug pro-
  530.          programs over the telephone, though we can answer questions.
  531.  
  532.          Disks in the PsL are updated  monthly,  so if you did not get
  533.          this disk directly from the PsL, you should be aware that the
  534.          files in this set may no longer be the current versions. Also,
  535.          if you got this disk from another vendor and are having prob-
  536.          lems,  be aware that  some files may have become corrupted or
  537.          lost by that vendor. Get a current, working disk from PsL.
  538.  
  539.          For a copy of the latest monthly software library newsletter
  540.          and a list of the 3,000+ disks in the library, call or write
  541.  
  542.                            Public (software) Library
  543.                                P.O.Box 35705 - F
  544.                             Houston, TX 77235-5705
  545.  
  546.                                  Orders Only:
  547.                                 1-800-2424-PSL
  548.                               FAX: 713-524-6398
  549.                             CompuServe: 71355,470
  550.                             MC/Visa/AmEx/Discover
  551.  
  552.                           Outside of U.S. or in Texas
  553.                           or for general information,
  554.                               Call 1-713-524-6394
  555.  
  556.  
  557.